for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
const validUser = () => ({
name: 'Some name here!',
isAdmin: false,
canPost: false
})
const canPostUser = () => ({
name: 'Somebody who can post',
canPost: true
export default { validUser, canPostUser }